home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 September (Japanese) / CICA Shareware for Windows CD-ROM (Walnut Creek) (September 1995) (Japanese) (Disc 2).iso / disc2 / nt / source.exe / POSIX / BSDPSX / FOR2BAK.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-10  |  203 b   |  14 lines

  1. #include <stdio.h>
  2. /*
  3.  * For2bak:  Converts a string's fore slashes to back slashes.  MSS
  4.  */
  5.  
  6. void for2bak(char * str) 
  7. {
  8.     while (*str) {
  9.         if(*str == '/')
  10.             *str = '\\';
  11.         str++;
  12.     }            
  13. }
  14.